home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1996 April / MacFormat CD Edition MF36 (April 1996).iso / Shareware City / Comms / TableMaker ƒ / Settings Files / Default Settings
Encoding:
Text File  |  1996-01-21  |  3.8 KB  |  95 lines  |  [TEXT/ttxt]

  1. # This is a settings file for use with TableMaker to control how your
  2. # tables are formatted. To change the appearance of your tables, you enter
  3. # appropriate values between the single quotes for the items listed below.
  4. # For example, to give your tables a border of 5 pixels, you would change
  5. # $BORDER = ''; to $BORDER = '5'; (please note that the $ at the beginning
  6. # and ; at the end of each item are very important and should not be
  7. # changed). The valid choices for each item are given in the comments
  8. # section below each item. More detailed descriptions of how each item
  9. # affects the appearance of tables can be found in the "Instructions.html"
  10. # file in the "Docs in HTML format" folder.
  11.  
  12. # The pound symbol '#' used throughout this file tells TableMaker to ignore
  13. # any text following it. Without that symbol in front of comments, TableMaker
  14. # will not work. You can add additional comments as you see fit -- just be
  15. # sure to put a # in front of them. On the other hand, you can delete any
  16. # comments you feel are unnecessary. 
  17.  
  18.  
  19.  
  20.  
  21. $DELIMITER = ',';
  22.     # the character which separates values for data cells
  23.     # (choices are comma ',' or tab '\t' -- others may work as well)
  24.  
  25. $BORDER = '';
  26.     # the number of pixels for the border around the table
  27.     # (leave blank if you don't want a border)
  28.  
  29. $WIDTH = '';
  30.     # the number of pixels for the width of the table
  31.     # (if the number is followed by percent sign '%'
  32.     # then width is that percentage of browser window) 
  33.     # (leave blank if you want the default width)
  34.  
  35. $HEIGHT = '';
  36.     # the number of pixels or percentage for the height of table
  37.     # (analogous to width above)
  38.     # (leave blank if you want the default height)
  39.                         
  40. $CELLPADDING = '';
  41.     # the number of pixels padding the values in data cells
  42.     # (leave blank if you want the default cellpadding)
  43.  
  44. $CELLSPACING = '';
  45.     # the number of pixels separating individual data cells
  46.     # (leave blank if you want the default cellspacing)
  47.  
  48. $CAPTION = '';
  49.     # this adds a caption of your choice to the table
  50.     # (leave blank if you don't want a caption)
  51.     
  52. $ALIGN_CAPTION = 'TOP';
  53.     # the placement of the caption relative to the table
  54.     # (choices are 'TOP' or 'BOTTOM')
  55.   
  56. $BOLD_CAPTION = 'NO';
  57.     # you can choose to have the caption in bold
  58.     # (choices are 'YES' or 'NO')
  59.  
  60. $SPANNING = 'YES';
  61.     # tells TableMaker whether or not to look for the special
  62.     # row spanning and/or column spanning codes in your input files
  63.     # (choices are 'YES' or 'NO')
  64.  
  65. $HEADER = 'NONE';
  66.     # formats your choice of cells as header cells
  67.     # (choices are 'NONE' or 'FIRST ROW' or 'FIRST COLUMN' or 
  68.     #  'FIRST ROW AND COLUMN' or 'ALL CELLS')
  69.  
  70. $ROW_ALIGN = 'DEFAULT';
  71.     # the horizontal alignment of objects in a row
  72.     # (choices are 'DEFAULT' or 'LEFT' or 'CENTER' or 'RIGHT')
  73.     
  74. $TD_ALIGN = 'DEFAULT';
  75.     # the horizontal alignment of values in data cells
  76.     # takes precedence if alignment or rows is also set
  77.     # (choices are 'DEFAULT' or 'LEFT' or 'CENTER' or 'RIGHT')
  78.     
  79. $TH_ALIGN = 'DEFAULT';
  80.     # the horizontal alignment of values in header cells
  81.     # (choices are 'DEFAULT' or 'LEFT' or 'CENTER' or 'RIGHT')
  82.     
  83. $SOURCE_LINES = 'SAME';
  84.     # controls how the table source is written in the output file.
  85.     # You can have the data and/or header cells of each row written 
  86.     # on the same line or have them written on new lines
  87.     # (choices are 'NEW' or 'SAME') 
  88.  
  89. $CREATOR = 'ttxt';
  90.     # specifies the creator of the output HTML file(s)  -- the application 
  91.     # that's opened when the file is double-clicked.
  92.     # You can choose whatever creator code you want -- some common ones are:
  93.     # 'R*ch' for BBEdit, 'ttxt' for TeachText/SimpleText, 'MSWD' for MS Word
  94.     
  95. 1;      # this '1' followed by a semi-colon is important -- do not remove it